ci: bump pnpm/action-setup to v6.0.8 (hotfixes backport)#5941
Merged
rtibbles merged 1 commit intoMay 27, 2026
Merged
Conversation
v6.0.3 carries a regression (pnpm/action-setup#225, learningequality#227) that ignores the packageManager-pinned pnpm version and installs pnpm 11, which requires Node.js >=22.13 and fails on our Node 20 runners. v6.0.7 restored self-update to the packageManager-pinned version (10.33.0). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
rtibblesbot
approved these changes
May 27, 2026
Contributor
rtibblesbot
left a comment
There was a problem hiding this comment.
Clean, minimal backport — correct fix for the regression.
CI passing (Build frontend assets still in progress but unrelated to this change; all other checks pass).
No UI files changed — Phase 3 skipped.
- praise: see inline
@rtibblesbot's comments are generated by an LLM, and should be evaluated accordingly
How was this generated?
Reviewed the pull request diff checking for:
- Correctness: bugs, edge cases, undocumented behavior, resource leaks, hardcoded values
- Design: unnecessary complexity, naming, readability, comment accuracy, redundant state
- Architecture: duplicated concerns, minimal interfaces, composition over inheritance
- Testing: behavior-based assertions, mocks only at hard boundaries, accurate coverage
- Completeness: missing dependencies, unupdated usages, i18n, accessibility, security
- Principles: DRY (same reason to change), SRP, Rule of Three (no premature abstraction)
- Checked CI status and linked issue acceptance criteria
- For UI changes: inspected screenshots for layout, visual completeness, and consistency
| - uses: actions/checkout@v6 | ||
| - name: Use pnpm | ||
| uses: pnpm/action-setup@v6.0.3 | ||
| uses: pnpm/action-setup@v6.0.8 |
Contributor
There was a problem hiding this comment.
praise: All 5 workflow files using pnpm/action-setup were updated consistently — no missed occurrences. Good thoroughness on the sweep.
rtibbles
approved these changes
May 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backport of #5939 to
hotfixes.pnpm/action-setup@v6.0.3has a regression (pnpm/action-setup#225) that ignores the pinned pnpm version and installs pnpm 11, which requires Node.js ≥22.13 and fails on our Node 20 runners. v6.0.8 restores correct handling of thepackageManager-pinned version (10.33.0).This is causing CI failures on PRs targeting
hotfixes(e.g. #5926).